home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- repeat with i = 7 down to 0
- set the visible of sprite (24 + i) to 1
- end repeat
- repeat with i = 7 down to 0
- set the visible of sprite (24 + i) to 0
- end repeat
- updateStage()
- repeat while the mouseDown = 1
- if rollOver(39) = 1 then
- set the visible of sprite 31 to 0
- updateStage()
- end if
- end repeat
- end
-
- on mouseUp
- if rollOver(39) = 1 then
- set the soundLevel to 7
- else
- repeat with i = 7 down to 0
- set the visible of sprite (24 + i) to 1
- end repeat
- repeat with i = the soundLevel down to 0
- set the visible of sprite (24 + i) to 0
- end repeat
- end if
- end
-